crypto/tls.Conn.hand (field)
17 uses
crypto/tls (current package)
conn.go#L107: hand bytes.Buffer // handshake data waiting to be read
conn.go#L708: if c.vers == VersionTLS13 && typ != recordTypeHandshake && c.hand.Len() > 0 {
conn.go#L744: if c.hand.Len() > 0 {
conn.go#L780: c.hand.Write(data)
conn.go#L1077: for c.hand.Len() < n {
conn.go#L1092: data := c.hand.Bytes()
conn.go#L1113: data = c.hand.Next(4 + n)
conn.go#L1388: for c.hand.Len() > 0 {
handshake_client_tls13.go#L532: if c.hand.Len() != 0 {
handshake_client_tls13.go#L854: if c.hand.Len() != 0 {
handshake_server_tls13.go#L666: if c.hand.Len() != 0 {
handshake_server_tls13.go#L797: if c.hand.Len() != 0 {
quic.go#L272: c.hand.Write(c.quic.readbuf)
quic.go#L274: for q.conn.hand.Len() >= 4 && q.conn.handshakeErr == nil {
quic.go#L275: b := q.conn.hand.Bytes()
quic.go#L376: for c.hand.Len() < n {
quic.go#L494: c.hand.Write(c.quic.readbuf)
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |